'Declaration Public Function Select(Of TResult)( _ ByVal selector As Expression(Of Func(Of T,TResult)) _ ) As View(Of TResult)
public View<TResult> Select<TResult>( Expression<Func<T,TResult>> selector )
Parameters
- selector
- A transform function to apply to each element.
Type Parameters
- TResult
- The type of the value returned by selector.
Return Value
A view whose elements are the result of invoking the transform function on each element of this view.